1c5fa4272260c4431cdc3e58db3929d2e50400ad,src/test/java/com/thoughtworks/gauge/test/common/GaugeProject.java,GaugeProject,initialize,#,88

Before Change


    public boolean initialize() throws Exception {
        String originalTmp = System.getProperty("java.io.tmpdir");
        System.setProperty("java.io.tmpdir", Files.createTempDirectory("template_").toAbsolutePath().toString());
        boolean b = executeGaugeCommand("--init", language);
        System.setProperty("java.io.tmpdir", originalTmp);
        return b;
    }

After Change


    }

    public boolean initialize() throws Exception {
        return executeGaugeCommand("--init", language);
    }

    public String getStdOut() throws IOException {